-
Re: Trigger workflow based on time of day a request is received
I would extract the hour from the "created date" column with : =iferror(value(left(right([created date]@row,8),2)),value(left(right([created date]@row,7),1))) Then you can run an ourly &quo…1 · -
Re: IF Formulas including Blanks and AND / OR
How about that? =IF([Date Complete]@row <= IF(isblank([Renegociated date]@row),[Agreed Deadline]@row,[Renegociated date]@row), "Yes", "No")1 · -
Re: Removing ' from cells
IF you make a column with =VALUE([Imported data]@row) as formula, it willconvert the text to number. you can then copy/paste that elsewhere1 · -
Re: Hi Everyone--I am trying to create a multiple IF statement that is coming an "or" and a "contains" .
@gnomer70 Let's break it done so it's easier to parse ! if(OR(Temp@row = “Ambient”, Temp@row = “None Required”),"WIP", else...) if(Temp@row = "2-8c cooler", "COL", else.…1 · -
Re: Automation condition equal to (find and replace) ?
You can use "helpers" column, and have an automation that will (re)move the failed row to the to an archive sheet. the helper column would set a checkbox to True if the same part number wit…1 ·